Today I played around with three testing frameworks for PLT DrScheme.
SRFI-78 "check.ss", SRFI-64 "testing.ss", and lastly SchemeUnit "test.ss".
I started with SRFI-78 since it was a more recent standard. It has a very minimal API.
(require (lib "check.ss" "srfi" "78"))
(check-set-mode! 'report-failed ) ;report-failed)
(load "image-filters.scm")
(check (
(
Read more... )